home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / amiga / convrtrs / imagemak.arc / imagemkr.doc < prev   
Text File  |  1986-01-25  |  2KB  |  32 lines

  1.             Documentation file for ImageMaker V1.0
  2.                      created 26-mar-86
  3.  
  4. Please address any questions/comments to Randy Manchester
  5. via Compuserve ID: 70775,1424 or on the Amiga Sanctuary at
  6. (603)524-0136.
  7.  
  8.     ImageMaker is a utility that will convert any standard brush file created with Deluxe Paint into an Image structure in C source code. The resulting source code can then be used in your own programs for rendering gadgets or bobs.
  9.  
  10.     To create a brush file with deluxe paint, you would load deluxe paint, then draw the image you want. After you've finished creating your image, you should pickup the image using the brush icon, then save the image as a brush. Once this is done, you can use ImageMaker to generate the source code.
  11.  
  12.     ImageMaker uses the following syntax:
  13.  
  14. ImageMaker [-c] infile outfile structure
  15.  
  16. where
  17.  [-c]      is an optional flag that tells the program to generate 
  18.            color register values. The register values will be placed               at the end of the file as a comment (enclosed in /* .. */).
  19.  infile    is the brush file you want to convert.
  20.  outfile   is the name of the file where the source code will be                   stored.
  21.  structure is the name that will be used for this structure. 
  22.  
  23. example:
  24.  
  25. 1> ImageMaker -c dpaint/brush/cloud DF0:Cloud.img Cloud<cr>
  26.  
  27. will convert the cloud brush in the dpaint/brush/fantasy1 directory to C source code, and will save it in DF0: under the name Cloud.img. The structure will have the name CloudImage.
  28.  
  29.     Values for PlanePick and PlaneOnOff will be preset to 31 and 0 respectively, so you may need to edit these values. The number of bit planes (depth) of the image are determined by deluxe paint and default to 5 deep in lo-res mode. To create an image with only 2 bit planes you would use the following syntax when running deluxe paint:
  30. 1> dpaint lo 2<cr>. Where lo is the the screen resolution and 2 is the number of bitplanes. See the deluxe paint documentation for more info on parameters.
  31.  
  32.     ImageMaker will load a brush file saved in any resolution, so you can create an image in medium res mode and use it in lo-res or high-res. Comments are automatically inserted in the Image struct to make editing your image structure easy.